home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / xml / dom / domreg.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2014-12-31  |  3KB  |  96 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Registration facilities for DOM. This module should not be used
  5. directly. Instead, the functions getDOMImplementation and
  6. registerDOMImplementation should be imported from xml.dom.'''
  7. from xml.dom.minicompat import *
  8. well_known_implementations = {
  9.     'minidom': 'xml.dom.minidom',
  10.     '4DOM': 'xml.dom.DOMImplementation' }
  11. registered = { }
  12.  
  13. def registerDOMImplementation(name, factory):
  14.     '''registerDOMImplementation(name, factory)
  15.  
  16.     Register the factory function with the name. The factory function
  17.     should return an object which implements the DOMImplementation
  18.     interface. The factory function can either return the same object,
  19.     or a new one (e.g. if that implementation supports some
  20.     customization).'''
  21.     registered[name] = factory
  22.  
  23.  
  24. def _good_enough(dom, features):
  25.     '''_good_enough(dom, features) -> Return 1 if the dom offers the features'''
  26.     for f, v in features:
  27.         if not dom.hasFeature(f, v):
  28.             return 0
  29.     
  30.     return 1
  31.  
  32.  
  33. def getDOMImplementation(name = None, features = ()):
  34.     '''getDOMImplementation(name = None, features = ()) -> DOM implementation.
  35.  
  36.     Return a suitable DOM implementation. The name is either
  37.     well-known, the module name of a DOM implementation, or None. If
  38.     it is not None, imports the corresponding module and returns
  39.     DOMImplementation object if the import succeeds.
  40.  
  41.     If name is not given, consider the available implementations to
  42.     find one with the required feature set. If no implementation can
  43.     be found, raise an ImportError. The features list must be a sequence
  44.     of (feature, version) pairs which are passed to hasFeature.'''
  45.     import os as os
  46.     creator = None
  47.     mod = well_known_implementations.get(name)
  48.     if mod:
  49.         mod = __import__(mod, { }, { }, [
  50.             'getDOMImplementation'])
  51.         return mod.getDOMImplementation()
  52.     if None:
  53.         return registered[name]()
  54.     if None in os.environ:
  55.         return getDOMImplementation(name = os.environ['PYTHON_DOM'])
  56.     if None(features, StringTypes):
  57.         features = _parse_feature_string(features)
  58.     for creator in registered.values():
  59.         dom = creator()
  60.         if _good_enough(dom, features):
  61.             return dom
  62.     
  63.     for creator in well_known_implementations.keys():
  64.         
  65.         try:
  66.             dom = getDOMImplementation(name = creator)
  67.         except StandardError:
  68.             continue
  69.  
  70.         if _good_enough(dom, features):
  71.             return dom
  72.     
  73.     raise ImportError, 'no suitable DOM implementation found'
  74.  
  75.  
  76. def _parse_feature_string(s):
  77.     features = []
  78.     parts = s.split()
  79.     i = 0
  80.     length = len(parts)
  81.     while i < length:
  82.         feature = parts[i]
  83.         if feature[0] in '0123456789':
  84.             raise ValueError, 'bad feature name: %r' % (feature,)
  85.         i = i + 1
  86.         version = None
  87.         if i < length:
  88.             v = parts[i]
  89.             if v[0] in '0123456789':
  90.                 i = i + 1
  91.                 version = v
  92.             
  93.         features.append((feature, version))
  94.     return tuple(features)
  95.  
  96.